home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 September (IDG) / Sep99.iso / MarkzScout™ 14-day trial / Scripts / Show Version.m1s < prev    next >
Encoding:
Text File  |  1999-02-20  |  361 b   |  14 lines  |  [TEXT/MSCT]

  1. //
  2. // Show Version.m1s
  3. //
  4. // Show the type and version of a document. Also works with application files
  5. //
  6. print "File Name      : " + it.name
  7. print "File Type      : " + it.class_name
  8. if not it.version is undefined then
  9.   if it.version - 1.0 <> 0.0 then
  10.     print "Version        : " + it.version
  11.   end if
  12. end if
  13. print "--------------------------------------"
  14.